home *** CD-ROM | disk | FTP | other *** search
/ isnet Internet / Isnet Internet CD.iso / prog / hiz / 09 / 09.exe / adynware.exe / perl / lib / site / LWP / Protocol / https.pm < prev    next >
Encoding:
Perl POD Document  |  1999-12-28  |  186 b   |  15 lines

  1.  
  2. package LWP::Protocol::https;
  3.  
  4. require LWP::SecureSocket;
  5.  
  6. require LWP::Protocol::http;
  7. @ISA=qw(LWP::Protocol::http);
  8.  
  9. sub _new_socket
  10. {
  11.     LWP::SecureSocket->new;
  12. }
  13.  
  14. 1;
  15.